From: Deepak Goel Date: Fri, 13 Mar 2009 19:59:15 +0000 (+0000) Subject: m-v corrections. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~421^2~1280 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=978385b9d432f67557776f33f071c8671d723db8;p=emacs.git m-v corrections. --- diff --git a/lisp/org/org-bbdb.el b/lisp/org/org-bbdb.el index 55200c2ab8c..f9fe216082f 100644 --- a/lisp/org/org-bbdb.el +++ b/lisp/org/org-bbdb.el @@ -225,7 +225,7 @@ italicised, in all other cases it is left unchanged." (defun org-bbdb-anniv-extract-date (time-str) "Convert YYYY-MM-DD to (month date year). Argument TIME-STR is the value retrieved from BBDB." - (multiple-value-bind (y m d) (bbdb-split time-str "-") + (multiple-value-bind (y m d) (values-list (bbdb-split time-str "-")) (list (string-to-number m) (string-to-number d) (string-to-number y)))) @@ -258,7 +258,7 @@ The anniversaries are assumed to be stored `org-bbdb-anniversary-field'." (while annivs (setq split (org-bbdb-anniv-split (pop annivs))) (multiple-value-bind (m d y) - (funcall org-bbdb-extract-date-fun (car split)) + (values-list (funcall org-bbdb-extract-date-fun (car split))) (setq tmp (gethash (list m d) org-bbdb-anniv-hash)) (puthash (list m d) (cons (list y (bbdb-record-name rec)